time passed python

118

time passed python -

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)

Comments

Submit
0 Comments